var punkt = {
  x : 3,
  y : 4,
  odległość : function()
  {
    return Math.sqrt(this.x * this.x + this.y * this.y);
  }
};
